home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1995 October
/
EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso
/
Aminet
/
comm
/
fido
/
ROCK14.lha
/
addrcheck.rexx
next >
Wrap
OS/2 REXX Batch file
|
1995-01-24
|
526b
|
26 lines
/*
Rock v1.3 - Fidonet mailer for point systems
Copyright (C) 1995 Jean-Marc Xiume'
This software is distributed under the terms of the
GNU General Public License. Read "license.doc" for more details.
**************** Check if the given address is valid ****************
*/
options results
options failat 99
Parse upper arg address .
parse var address a.1 ":" a.2 "/" a.3 "." a.4 .
if a.4="" then a.4=0
do i=1 to 4
if ~datatype(a.i,'w') then do
exit 1
end
end
exit 0